home *** CD-ROM | disk | FTP | other *** search
-
-
- class MPatch
- {
- unsigned long UnRegCrc;
- char *FileBuffer;
- short error;
- char Doldfile[256];
- char Dnewfile[256];
- char Name[256];
- unsigned long rate;
-
- short Patch(FILE *fold,FILE *fnew,FILE *fdiff);
-
- public:
-
- MPatch();
-
- void SetRate(short r=10);
- short MDFPatch(char *diffile, char *oldfile, char *newfile);
- char *LastError();
- virtual void Show_start();
- virtual void Show();
- virtual void Show_end();
- };